home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / teco.zip / NEXT.C < prev    next >
C/C++ Source or Header  |  1986-07-15  |  303b  |  14 lines

  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. next() /* Search file for (alt terminated) string */
  5. {
  6. #include "teco.h"
  7.  
  8.     while (bufptr) {            /* Scan thru file */
  9.         search();            /*  ... scan page */
  10.         if (bufptx) break;        /* Found the item */
  11.         page();                /*  ... next page */
  12.     }
  13. }
  14.